From: Keir Fraser Date: Fri, 30 Mar 2012 07:52:19 +0000 (+0100) Subject: Remove single use of fastcall from hypervisor common code. X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=33c4b1044d00866e9b6d9362048fb194e76afb77;p=xen.git Remove single use of fastcall from hypervisor common code. Signed-off-by: Keir Fraser --- diff --git a/xen/common/rcupdate.c b/xen/common/rcupdate.c index 158e2d554b..e9979cd9d0 100644 --- a/xen/common/rcupdate.c +++ b/xen/common/rcupdate.c @@ -175,8 +175,8 @@ static void force_quiescent_state(struct rcu_data *rdp, * sections are delimited by rcu_read_lock() and rcu_read_unlock(), * and may be nested. */ -void fastcall call_rcu(struct rcu_head *head, - void (*func)(struct rcu_head *rcu)) +void call_rcu(struct rcu_head *head, + void (*func)(struct rcu_head *rcu)) { unsigned long flags; struct rcu_data *rdp; diff --git a/xen/include/xen/rcupdate.h b/xen/include/xen/rcupdate.h index 8e5555f9b2..91ded98641 100644 --- a/xen/include/xen/rcupdate.h +++ b/xen/include/xen/rcupdate.h @@ -142,8 +142,8 @@ void rcu_init(void); void rcu_check_callbacks(int cpu); /* Exported interfaces */ -void fastcall call_rcu(struct rcu_head *head, - void (*func)(struct rcu_head *head)); +void call_rcu(struct rcu_head *head, + void (*func)(struct rcu_head *head)); int rcu_barrier(void);